From 422baa262be2e6339e0a3cc2f680d5688e550c09 Mon Sep 17 00:00:00 2001 From: tsteven4 <13596209+tsteven4@users.noreply.github.com> Date: Thu, 4 Feb 2021 15:56:38 -0700 Subject: [PATCH] replace obsolete and overloaded QProcess signal error(QProcess::ProcessError error) (#679) with the recommended replacement, QProcess signal errorOccurred(QProcess::ProcessError error). It seems this should have caused an issue in Qt6, but we hadn't noticed it yet. --- gui/processwait.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/processwait.cc b/gui/processwait.cc index 33a4ef849..a612b5c23 100644 --- a/gui/processwait.cc +++ b/gui/processwait.cc @@ -82,7 +82,7 @@ ProcessWaitDialog::ProcessWaitDialog(QWidget* parent, QProcess* process): btn->setText(tr("Stop Process")); layout->addWidget(buttonBox_); - connect(process, SIGNAL(error(QProcess::ProcessError)), + connect(process, SIGNAL(errorOccurred(QProcess::ProcessError)), this, SLOT(errorX(QProcess::ProcessError))); connect(process, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(finishedX(int,QProcess::ExitStatus))); -- 2.30.2